-
Notifications
You must be signed in to change notification settings - Fork 81
Possibility to change tx_payload_buffer_size #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This gave me a headache, and I had to change the define manually because Arduino uses old version of this library. |
@aentinger maybe it's time to consider merging it, as it seems like a bug and I think we were not the only one who came across this issue. At least it should be mentioned somewhere that if long MQTT messages are cut/truncated then you should check the value of this definition, as this is behavior that is being observed in effect. |
As you wish |
Memory usage change @ 79f512f
Click for full report table
Click for full report CSV
|
PR #44 introduced a buffer overflow bug that will corrupt the heap if the transmit payload size is increased after any send.
PR #44 introduced a buffer overflow bug that will corrupt the heap if the transmit payload size is increased after any send. Co-authored-by: Dr. Fred Nugen <[email protected]>
Maximum size of the tx paylod buffer was fixed value, there should be possibility to extend this value by user, so i added a new member variable with according setter function.